home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.2 Applications 1996 May / SGI IRIX 6.2 Applications 1996 May.iso / dist / impr_dev.idb / usr / impressario / src / libstiff / Makefile.z / Makefile
Makefile  |  1996-05-06  |  2KB  |  57 lines

  1. #! smake
  2. #**************************************************************************
  3. #*
  4. #*           Copyright (c) 1992 Silicon Graphics, Inc.
  5. #*            All Rights Reserved
  6. #*
  7. #*       THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF SGI
  8. #*
  9. #* The copyright notice above does not evidence any actual of intended
  10. #* publication of such source code, and is an unpublished work by Silicon
  11. #* Graphics, Inc. This material contains CONFIDENTIAL INFORMATION that is
  12. #* the property of Silicon Graphics, Inc. Any use, duplication or
  13. #* disclosure not specifically authorized by Silicon Graphics is strictly
  14. #* prohibited.
  15. #*
  16. #* RESTRICTED RIGHTS LEGEND:
  17. #*
  18. #* Use, duplication or disclosure by the Government is subject to
  19. #* restrictions as set forth in subdivision (c)(1)(ii) of the Rights in
  20. #* Technical Data and Computer Software clause at DFARS 52.227-7013,
  21. #* and/or in similar or successor clauses in the FAR, DOD or NASA FAR
  22. #* Supplement. Unpublished - rights reserved under the Copyright Laws of
  23. #* the United States. Contractor is SILICON GRAPHICS, INC., 2011 N.
  24. #* Shoreline Blvd., Mountain View, CA 94039-7311
  25. #**************************************************************************
  26. #*
  27. #* Makefile - libstiff, Stream TIFF API library
  28. #*
  29. #* $Revision: 1.2 $
  30. #*
  31. #*
  32. #**************************************************************************
  33.  
  34. include    /usr/include/make/commondefs
  35.  
  36. CFILES = stiff.c \
  37.      stiffio.c \
  38.      tagnames.c \
  39.      tags.c \
  40.      error.c \
  41.      printstiff.c
  42.  
  43. TARGETS = libstiff.a
  44. CVERSION = -xansi
  45. LCOPTS = -fullwarn
  46.  
  47. ARFLAGS = crs
  48. LINTFLAGS = -u -z -y -woff 91
  49.  
  50. default: $(TARGETS)
  51.  
  52. include ${COMMONRULES}
  53.  
  54. libstiff.a: ${OBJECTS}
  55.     ${AR} $(ARFLAGS) $@ ${OBJECTS}
  56.  
  57.